home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / Papers / Garrison / Code / SchmoozingExamples / Connection.h < prev    next >
Encoding:
Text File  |  2001-06-23  |  518 b   |  24 lines

  1. //
  2. //  Connection.h
  3. //  SchmoozingExamples
  4. //
  5. //  Created by garrison on Fri Apr 20 2001.
  6. //  Copyright (c) 2001 Standard Orbit Software, LLC. All rights reserved.
  7. //
  8. //  Permission is granted to use this code for any purpose, at your own risk.
  9. //  No warranties are expressed or implied.
  10.  
  11. #import <Foundation/Foundation.h>
  12.  
  13. @class ONTCPSocket;
  14.  
  15. @interface Connection : NSObject {
  16.     ONTCPSocket *mySocket;
  17. }
  18.  
  19. - (id) initWithConnectedSocket:(ONTCPSocket*) aSocket;
  20. - (void) dealloc;
  21.  
  22. - (void) processConnection;
  23. @end
  24.